home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / managers / IToolTipManagerClient.as < prev    next >
Encoding:
Text File  |  2009-02-12  |  254 b   |  13 lines

  1. package mx.managers
  2. {
  3.    import mx.core.IFlexDisplayObject;
  4.    
  5.    public interface IToolTipManagerClient extends IFlexDisplayObject
  6.    {
  7.       function get toolTip() : String;
  8.       
  9.       function set toolTip(param1:String) : void;
  10.    }
  11. }
  12.  
  13.